home *** CD-ROM | disk | FTP | other *** search
/ Glamour Girls 2 / Glamour Girls II.iso / mac / bobwin.dir / 00090_Script_90 < prev    next >
Text File  |  1995-06-13  |  644b  |  33 lines

  1. on exitFrame
  2.   global Videoframe
  3.   set Videoframe = the frame
  4.   
  5.   go to the frame
  6.   
  7.   put the frame into field "Location"
  8.   
  9.   
  10.   global profile
  11.   if profile = 0 then
  12.     set the visible of sprite 2 to False
  13.   else if profile = 1 then
  14.     set the visible of sprite 2 to True
  15.   end if
  16.   
  17.   global soundbutton
  18.   
  19.   if soundbutton = 0 then
  20.     set the visible of sprite 3 to False
  21.   else if soundbutton = 1 then
  22.     set the visible of sprite 3 to True
  23.   end if
  24.   
  25.   if soundbutton = 0 then 
  26.     set the volume of sound 1 = 255
  27.   else if soundbutton = 1 then
  28.     set the volume of sound 1 = 0
  29.   end if
  30.   
  31.   
  32.   
  33. end